home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / 1994.12.gz / 1994.12 / 000014_karney@pppl.gov_Fri Dec 2 17:48:53 1994.msg < prev    next >
Internet Message Format  |  1994-12-30  |  2KB

  1. Received: from pppl.gov by cs.umb.edu with SMTP id AA28024
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Fri, 2 Dec 1994 22:49:30 -0500
  3. Received: from draco.pppl.gov (draco.pppl.gov [198.35.6.44]) by pppl.gov (8.6.8.1/8.6.5) with ESMTP id WAA21219; Fri, 2 Dec 1994 22:48:54 -0500
  4. From: Charles Karney <karney@pppl.gov>
  5. Received: (karney@localhost) by draco.pppl.gov (8.6.9/8.6.9) id WAA11839; Fri, 2 Dec 1994 22:48:53 -0500
  6. Date: Fri, 2 Dec 1994 22:48:53 -0500
  7. Message-Id: <199412030348.WAA11839@draco.pppl.gov>
  8. To: rl@leeor.technion.ac.il, tex-k@cs.umb.edu
  9. Cc: ysun@pppl.gov
  10. Subject: web2c-6.1 man pages bug
  11. Reply-To: karney@princeton.edu
  12. Mime-Version: 1.0
  13. Content-Type: text/plain; charset=US-ASCII
  14.  
  15. The sed script which fixes up the paths in the man pages misses several.
  16. The following script when run in web2c/man will correct the man files to
  17. conform to what the sed script expects.
  18.  
  19. cd web2c/man
  20. for f in *.man; do
  21.     sed -e 's+@DEFAULT_BASE_PATH@+@DEFAULT_MFBASES@+g' \
  22.     -e 's+@DEFAULT_BIB_PATH@+@DEFAULT_BIBINPUTS@+g' \
  23.     -e 's+@DEFAULT_BST_PATH@+@DEFAULT_BSTINPUTS@+g' \
  24.     -e 's+@DEFAULT_FMT_PATH@+@DEFAULT_TEXFORMATS@+g' \
  25.     -e 's+@DEFAULT_GF_PATH@+@DEFAULT_GFFONTS@+g' \
  26.     -e 's+@DEFAULT_MFPOOL_PATH@+@DEFAULT_MFPOOL@+g' \
  27.     -e 's+@DEFAULT_MF_PATH@+@DEFAULT_MFINPUTS@+g' \
  28.     -e 's+@DEFAULT_PK_PATH@+@DEFAULT_PKFONTS@+g' \
  29.     -e 's+@DEFAULT_TEXPOOL_PATH@+@DEFAULT_TEXPOOL@+g' \
  30.     -e 's+@DEFAULT_TEX_PATH@+@DEFAULT_TEXINPUTS@+g' \
  31.     -e 's+@DEFAULT_TFM_PATH@+@DEFAULT_TFMFONTS@+g' \
  32.     -e 's+@DEFAULT_VF_PATH@+@DEFAULT_VFFONTS@+g' \
  33.     $f > $f.new
  34.     if cmp -s $f $f.new; then rm $f.new; else mv $f $f.orig; mv $f.new $f; fi
  35. done
  36.  
  37. -- 
  38.    Charles Karney
  39.    Plasma Physics Laboratory      E-mail:  Karney@Princeton.EDU
  40.    Princeton University          Phone:   +1 609 243 2607
  41.    Princeton, NJ 08543-0451      FAX:       +1 609 243 2662